home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 37 / CD Expert nº 37.iso / LastCall / lastcall.exe / stuff / recipe.dxr / 00013_Stub handlers.ls < prev    next >
Encoding:
Text File  |  2000-03-23  |  1.2 KB  |  71 lines

  1. on draggingBarTopGlass
  2.   if the activeWindow <> the stage then
  3.     tell the stage
  4.       temp = draggingBarTopGlass()
  5.     end tell
  6.     return temp
  7.   end if
  8. end
  9.  
  10. on draggingSpoon
  11.   if the activeWindow <> the stage then
  12.     tell the stage
  13.       temp = draggingSpoon()
  14.     end tell
  15.     return temp
  16.   end if
  17. end
  18.  
  19. on draggingWellThang
  20.   if the activeWindow <> the stage then
  21.     tell the stage
  22.       temp = draggingWellThang()
  23.     end tell
  24.     return temp
  25.   end if
  26. end
  27.  
  28. on draggingBottleOrSpoon
  29.   if the activeWindow <> the stage then
  30.     tell the stage
  31.       temp = draggingBottleOrSpoon()
  32.     end tell
  33.     return temp
  34.   end if
  35. end
  36.  
  37. on draggingBottleThang
  38.   if the activeWindow <> the stage then
  39.     tell the stage
  40.       temp = draggingBottleThang()
  41.     end tell
  42.     return temp
  43.   end if
  44. end
  45.  
  46. on draggingAnything
  47.   if the activeWindow <> the stage then
  48.     tell the stage
  49.       temp = draggingAnything()
  50.     end tell
  51.     return temp
  52.   end if
  53. end
  54.  
  55. on draggingIngredient
  56.   if the activeWindow <> the stage then
  57.     tell the stage
  58.       temp = draggingIngredient()
  59.     end tell
  60.     return temp
  61.   end if
  62. end
  63.  
  64. on replaceDraggingAnything
  65.   if the activeWindow <> the stage then
  66.     tell the stage
  67.       temp = replaceDraggingAnything()
  68.     end tell
  69.   end if
  70. end
  71.